home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / oath.lha / oath / src / numeric.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-29  |  1.6 KB  |  51 lines

  1. //***************************************************************************
  2. //             OATH :: Object-oriented Abstract Type Hierarchy
  3. //***************************************************************************
  4. //
  5. //  Copyright (C) 1991  Texas Instruments Incorporated
  6. //  Permission is granted to any individual or institution
  7. //  to use, copy, modify, and distribute this software,
  8. //  provided that this complete copyright and permission notice
  9. //  is maintained, intact, in all copies and supporting documentation.
  10. //
  11. //  Texas Instruments Incorporated provides this software "as is"
  12. //  without express or implied warranty.
  13. //
  14. //***************************************************************************
  15. //  complex (complexA, complexG)
  16. //  real (realA, realG)
  17. //  rational (rationalA, rationalG)
  18. //  integer (integerA, integerG)
  19. //
  20. //  History:
  21. //    06/91  Brian M Kennedy  New macros & format; remove printDiagnostic
  22. //    02/91  Brian M Kennedy  Original
  23. //
  24. //***************************************************************************
  25.  
  26. #include "copyright.h"
  27.  
  28. #include <oath/numeric.h>
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31. // complex Outlines
  32.  
  33. OUTLINES(complex, obj)
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. // real Outlines
  37.  
  38. OUTLINES(real, complex)
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // rational Outlines
  42.  
  43. OUTLINES(rational, real)
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // integer Outlines
  47.  
  48. OUTLINES(integer, rational)
  49.  
  50. //***************************************************************************
  51.